home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / mus / play / tracker_4_31.lzh / tracker / prefs.h < prev    next >
Text File  |  1995-05-11  |  1KB  |  53 lines

  1. /* prefs.h 
  2.     vi:ts=3 sw=3:
  3.  */
  4.  
  5. /* $Id: prefs.h,v 4.14 1995/05/11 12:26:15 espie Exp espie $
  6.  * $Log: prefs.h,v $
  7.  * Revision 4.14  1995/05/11  12:26:15  espie
  8.  * Corrected types.
  9.  *
  10.  * Revision 4.13  1995/03/17  00:32:41  espie
  11.  * PREF_XTERM.
  12.  *
  13.  * Revision 4.12  1995/02/21  21:13:16  espie
  14.  * Cleaned up source. Moved minor pieces of code around.
  15.  *
  16.  * Revision 4.11  1995/02/21  17:54:32  espie
  17.  * Internal problem: buggy RCS. Fixed logs.
  18.  *
  19.  * Revision 4.6  1995/02/01  20:41:45  espie
  20.  * Added color.
  21.  *
  22.  * Revision 4.2  1994/08/23  18:19:46  espie
  23.  * Added speedmode option.
  24.  */
  25.  
  26. #define BASE_PREFS      50
  27. #define PREF_TYPE       BASE_PREFS
  28. #define PREF_SPEED      (BASE_PREFS+1)
  29. #define PREF_TOLERATE   (BASE_PREFS+2)
  30. #define PREF_REPEATS    (BASE_PREFS+3)
  31. #define PREF_IMASK      (BASE_PREFS+4)
  32. #define PREF_BCDVOL     (BASE_PREFS+5)
  33. #define PREF_DUMP       (BASE_PREFS+6)
  34. #define PREF_SYNC       (BASE_PREFS+7)
  35. #define PREF_SHOW       (BASE_PREFS+8)
  36. #define PREF_SPEEDMODE     (BASE_PREFS+9)
  37. #define PREF_COLOR        (BASE_PREFS+10)
  38. #define PREF_XTERM        (BASE_PREFS+11)
  39.  
  40. /* values for PREF_SPEEDMODE */
  41. #define NORMAL_SPEEDMODE 0
  42. #define FINESPEED_ONLY    1
  43. #define SPEED_ONLY 2
  44. #define OLD_SPEEDMODE 3
  45.  
  46. #define NUMBER_PREFS    (PREF_XTERM - BASE_PREFS + 1)
  47.  
  48. XT VALUE get_pref P((int index));
  49. XT void set_pref P((int index, VALUE value));
  50. XT unsigned long get_pref_scalar P((int index));
  51. XT void set_pref_scalar P((int index, unsigned long value));
  52. XT struct tag *get_prefs P((void));
  53.